home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / demoversionen / turbocalc / arexx / hallo.rexx next >
OS/2 REXX Batch file  |  1994-12-13  |  363b  |  19 lines

  1. /*
  2.  * Hallo.rexx
  3.  * Beispiel-ARexx-Skript zu TurboCalc2.0   © 1993 by M.Friedrich
  4.  *
  5.  * Dieses Beispiel fragt nach Ihrem Namen (in TurboCalc)
  6.  * liest diesen Namen aus und druckt in dann.
  7.  */
  8.  
  9. Options FailAt 0
  10. Options Results
  11.  
  12. ADDRESS TCALC
  13.  
  14. 'EINGABE "Bitte Geben Sie Ihren Namen ein" "Ihr Name:" C3'
  15. GETVALUE C3
  16.  
  17. say "Hallo" RESULT||", viel Spaß mit TurboCalc"
  18.  
  19.